home *** CD-ROM | disk | FTP | other *** search
- // Animation plane header file.
- // Creates an additional graphic page for mode 0x13
- // Requires GRAPHICS mode.
-
- #ifndef __MAPLANE_H
- #define __MAPLANE_H
-
- #define MAPLANE_ID 0x0102
-
- class MAplane : public cArray {
- public:
- MAplane (void);
- virtual inline void Get (void);
- virtual inline classType isA (void) {return (MAPLANE_ID);};
- virtual inline void Put (void);
- ~MAplane (void) {};
- };
- typedef MAplane APLANE;
-
- #endif
-